home *** CD-ROM | disk | FTP | other *** search
/ CD BIT 75 / CD BIT 75.iso / Software / mysql-4.0.22-win / data1.cab / Development / include / mysql_version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-10-28  |  863 b   |  33 lines

  1. /* Copyright Abandoned 1996, 1999, 2001 MySQL AB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3.  
  4. /* Version numbers for protocol & mysqld */
  5.  
  6. #ifndef _mysql_version_h
  7. #define _mysql_version_h
  8. #ifdef _CUSTOMCONFIG_
  9. #include <custom_conf.h>
  10. #else
  11. #define PROTOCOL_VERSION        10
  12. #define MYSQL_SERVER_VERSION        "4.0.22"
  13. #define MYSQL_BASE_VERSION        "mysqld-4.0"
  14. #define MYSQL_SERVER_SUFFIX_DEF        ""
  15. #define FRM_VER                6
  16. #define MYSQL_VERSION_ID        40022
  17. #define MYSQL_PORT            3306
  18. #define MYSQL_UNIX_ADDR            "/tmp/mysql.sock"
  19. #define MYSQL_CONFIG_NAME        "my"
  20. #define MYSQL_COMPILATION_COMMENT    "Source distribution"
  21.  
  22. /* mysqld compile time options */
  23. #ifndef MYSQL_CHARSET
  24. #define MYSQL_CHARSET            "latin1"
  25. #endif /* MYSQL_CHARSET */
  26. #endif /* _CUSTOMCONFIG_ */
  27.  
  28. #ifndef LICENSE
  29. #define LICENSE                GPL
  30. #endif /* LICENSE */
  31.  
  32. #endif /* _mysql_version_h */
  33.